Comments
-
Which does NOT do what the OP asked. Further, you can't use a wildcard with the RD command. So the batch file (If tested?) is useless. OP - you need to wrap the delete and RD commands in a for loop against c:\users. For example - for /d %d in (%systemdrive%\users\*) do rd /s /q "%d\AppData\Local\Temp\RarSFX" What I don't…